projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f3f6a8
)
(skip_invisible): Don't skip "ellipsisized" text.
author
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 12 Oct 2001 22:31:23 +0000
(22:31 +0000)
committer
Stefan Monnier
<monnier@iro.umontreal.ca>
Fri, 12 Oct 2001 22:31:23 +0000
(22:31 +0000)
src/indent.c
patch
|
blob
|
history
diff --git
a/src/indent.c
b/src/indent.c
index 04768e37f2a4d2d3594eda5833f3115d65b4c35a..f2d5eb036758dcf4f2b81941c97380a5c56a2ce2 100644
(file)
--- a/
src/indent.c
+++ b/
src/indent.c
@@
-270,7
+270,9
@@
skip_invisible (pos, next_boundary_p, to, window)
prop = Fget_char_property (position, Qinvisible, window);
else
prop = Fget_char_property (position, Qinvisible, buffer);
- if (TEXT_PROP_MEANS_INVISIBLE (prop))
+ if (NILP (window)
+ ? TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS (prop)
+ : TEXT_PROP_MEANS_INVISIBLE (prop))
return *next_boundary_p;
return pos;
}